home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / e / mailinglists / amigae.0993sept.archive / 000077_crash!vaxca1.unica.it!CASANOVA_Tue, 28 Sep 93 03:44:14 PST.msg < prev    next >
Internet Message Format  |  1994-05-26  |  826b

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Tue, 28 Sep 93 03:44:14 PST
  3. Received: from VAXCA1.UNICA.IT by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #18) id m0ohcI1-00008sC; Tue, 28 Sep 93 03:28 PDT
  5. Date:    Tue, 28 Sep 1993 11:31:50 +0200 (CET)
  6. Message-Id: <930928113150.b72@vaxca1.unica.it>
  7. X-Vmsmail-To: SMTP%"amigae@bkhouse.cts.com"
  8. From: CASANOVA@vaxca1.unica.it
  9. To: amigae@bkhouse.cts.com
  10. Subject: random numbers
  11.  
  12. TO: UMLANGSTON
  13. ok test the simple algorithm made by D. Lehmer
  14. a[0] = seed;
  15.   for ( i =1 ; i < N ; i++)
  16.    a[i] = (a[i-1]*b+1) % m;
  17. the result will be an integer between 0 and m-1.
  18. Pay attention for values of seed,b and m : m must by power of 10 or 2,
  19. b will be one digit less than m. Third rule b must end with x21, 
  20. x must be even!! this is important.
  21.  
  22. By and enjoy . Ignazio